From e548c8ac404340d9bd78d733303fad3b7417f311 Mon Sep 17 00:00:00 2001 From: parkrrrr Date: Mon, 17 Jul 2006 18:37:19 +0000 Subject: [PATCH] handle type 3 record like type 2 record until we figure out what those other two bytes/strings/whatevers are --- tomtom.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tomtom.c b/tomtom.c index 97dcb81f0..4a89d4133 100644 --- a/tomtom.c +++ b/tomtom.c @@ -104,7 +104,7 @@ data_read(void) read_long( file_in ); read_long( file_in ); } - else if ( rectype == 2 ) { + else if ( rectype == 2 || rectype == 3 ) { recsize = read_long( file_in ); x = read_long( file_in ); y = read_long( file_in ); -- 2.30.2